diff options
| author | real-zephex <[email protected]> | 2024-03-16 15:32:44 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-16 15:32:44 +0530 |
| commit | 5fc30a26612f11c4a4ec5de1a98562712802f5df (patch) | |
| tree | a78b63473160e8a424cf7ae2a538adc64e98477a /src/app/info/[id] | |
| parent | minor fixes for vercel (diff) | |
| download | dramalama-5fc30a26612f11c4a4ec5de1a98562712802f5df.tar.xz dramalama-5fc30a26612f11c4a4ec5de1a98562712802f5df.zip | |
feature added: search anime by title
Diffstat (limited to 'src/app/info/[id]')
| -rw-r--r-- | src/app/info/[id]/page.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/app/info/[id]/page.js b/src/app/info/[id]/page.js index 43b11ac..9d37819 100644 --- a/src/app/info/[id]/page.js +++ b/src/app/info/[id]/page.js @@ -27,11 +27,11 @@ export default async function AnimeInfo({params}) { </div> )} - <div className="buttonContainer"> - {info && info.episodes.map((item, index) => ( - <CreateButton key={index} a={item} /> - ))} - </div> + <div className="buttonContainer"> + {info && info.episodes.map((item, index) => ( + <CreateButton key={index} a={item} /> + ))} + </div> </div> </div> |